home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 2000-09-06 | 844 b | 27 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = DataXML.exe biolife.exe UC62.exe
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- DataXML.exe: DataXML.dpr
- $(DCC)
-
- biolife.exe: biolife.DPR
- $(DCC)
-
- UC62.exe: UC62.dpr
- $(DCC)
-
-
-